home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / system / innosetup / isetup-5.1.8.exe / {app} / Examples / CodeDll.iss < prev    next >
Text File  |  2006-10-03  |  2KB  |  55 lines

  1. ; -- CodeDll.iss --
  2. ;
  3. ; This script shows how to call DLL functions at runtime from a [Code] section.
  4.  
  5. [Setup]
  6. AppName=My Program
  7. AppVerName=My Program version 1.5
  8. DefaultDirName={pf}\My Program
  9. DisableProgramGroupPage=yes
  10. UninstallDisplayIcon={app}\MyProg.exe
  11. OutputDir=userdocs:Inno Setup Examples Output
  12.  
  13. [Files]
  14. Source: "MyProg.exe"; DestDir: "{app}"
  15. Source: "MyProg.chm"; DestDir: "{app}"
  16. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  17. Source: "MyDll.dll"; Flags: dontcopy
  18.  
  19. [Code]
  20. const
  21.   MB_ICONINFORMATION = $40;
  22.  
  23. //importing a Windows API function
  24. function MessageBox(hWnd: Integer; lpText, lpCaption: String; uType: Cardinal): Integer;
  25. external 'MessageBoxA@user32.dll stdcall';
  26.  
  27. //importing a custom DLL function
  28. procedure MyDllFunc(hWnd: Integer; lpText, lpCaption: String; uType: Cardinal);
  29. external 'MyDllFunc@files:MyDll.dll stdcall';
  30.  
  31. //importing a function for a DLL which might not exist at runtime
  32. procedure DelayLoadedFunc(hWnd: Integer; lpText, lpCaption: String; uType: Cardinal);
  33. external 'DllFunc@DllWhichMightNotExist.dll stdcall delayload';
  34.  
  35. function NextButtonClick(CurPage: Integer): Boolean;
  36. var
  37.   hWnd: Integer;
  38. begin
  39.   if CurPage = wpWelcome then begin
  40.     hWnd := StrToInt(ExpandConstant('{wizardhwnd}'));
  41.  
  42.     MessageBox(hWnd, 'Hello from Windows API function', 'MessageBoxA', MB_OK or MB_ICONINFORMATION);
  43.  
  44.     MyDllFunc(hWnd, 'Hello from custom DLL function', 'MyDllFunc', MB_OK or MB_ICONINFORMATION);
  45.  
  46.     try
  47.       //if this DLL does not exist (it shouldn't), an exception will be raised
  48.       DelayLoadedFunc(hWnd, 'Hello from delay loaded function', 'DllFunc', MB_OK or MB_ICONINFORMATION);
  49.     except
  50.       //handle missing dll here
  51.     end;
  52.   end;
  53.   Result := True;
  54. end;
  55.